home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / cxref_1_4a.lha / query / smakefile < prev   
Makefile  |  1998-02-17  |  606b  |  21 lines

  1. CFLAGS = optimize opttime optinline optschedule nostackcheck debug=line data=faronly
  2. LFLAGS = smallcode noicons
  3.  
  4. OBJS =\
  5.     query.o \
  6.     input.o output.o \
  7.     /memory.o /slist.o \
  8.     /amiga.o
  9.  
  10. LIBS =\
  11.     lib:scmnb.lib lib:scnb.lib lib:amiga.lib
  12.  
  13. cxref-query : $(OBJS)
  14.     slink lib:c.o $(OBJS) to $@.debug lib $(LIBS) $(LFLAGS) addsym \
  15.         map $@.map,fhx fwidth 32 pwidth 32 swidth 32 width 100
  16.     slink $@.debug to $@ nodebug noicons
  17.  
  18. query.o    : query.c   query.h /cxref.h /datatype.h /memory.h
  19. input.o    : input.c   query.h /cxref.h /datatype.h /memory.h
  20. output.o   : output.c  query.h /cxref.h /datatype.h /memory.h
  21.